POV-Ray : Newsgroups : povray.binaries.images : Outline is missed in blob object : Outline is missed in blob object Server Time
13 Aug 2024 01:22:15 EDT (-0400)
  Outline is missed in blob object  
From: Nikumaru
Date: 1 Jun 2003 11:56:52
Message: <3eda2244@news.povray.org>
Hi,

 I made a simple blob object.
 But the outline of an element in the blob object is missed.
 The blob object's code is as follows;

//==================================
#macro CalcRadius( Radius, BlendVal )
    Radius/sqrt(1.0-sqrt(BlendVal))
#end

#local R_Body = 250;
#local R_Leg = 50;
#local Ratio_LegDist = 1.1;
#local A_Leg = 30; // degrees
#local LatitudeLeg = -70; // degrees
#local Blend = 0.2;
#local R_BodyBaseSphere = CalcRadius(R_Body, Blend);
#local R_LegBaseSphere = CalcRadius(R_Leg, Blend);
#debug concat("Body Radius = ", str(R_BodyBaseSphere, 0, 3), "\n")
#debug concat("Leg Radius = ", str(R_LegBaseSphere, 0, 3), "\n")
#local S_Body =
    blob{
        sphere{ 0, R_BodyBaseSphere, 1.0 } // <--- This element's
outline is missed !
        sphere{ -Ratio_LegDist*R_Body*z, R_LegBaseSphere, 1.0 rotate
A_Leg*y rotate LatitudeLeg*x }
        sphere{ -Ratio_LegDist*R_Body*z, R_LegBaseSphere, 1.0
rotate -A_Leg*y rotate LatitudeLeg*x }
        threshold Blend
    }
#local T_Body =
    texture{
        pigment{ color rgb 0.6 }
        #if( on=Radiosity )
            finish{ ambient 0.0 }
        #end
    }
#local O_Body = object{ S_Body texture{ T_Body } }
//==================================

 What is happening?
 Could anyone give me an advice?

 Thanks in advance.

Nikumaru


Post a reply to this message


Attachments:
Download 'a_blobobject.jpg' (13 KB) Download 'a_blobobjectwithradiosity.jpg' (33 KB)

Preview of image 'a_blobobject.jpg'
a_blobobject.jpg

Preview of image 'a_blobobjectwithradiosity.jpg'
a_blobobjectwithradiosity.jpg


 

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.